Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633466 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/37 - RPS Game

font/ cody/swapnilsparsh/30DaysOfJavaScript/37 - RPS Game/font/
1 Items
  • sans.ttf
  • assets/ cody/swapnilsparsh/30DaysOfJavaScript/37 - RPS Game/assets/
    3 Items
  • images2.jpg
  • images1.jpg
  • images3.jpg
  • fonts/ cody/swapnilsparsh/30DaysOfJavaScript/37 - RPS Game/fonts/
    1 Items
  • sans.ttf
  • start.js cody/swapnilsparsh/30DaysOfJavaScript/37 - RPS Game/start.js
    104 Views
    0 Comments
    function rpsGame(humanChoice) {

    let myChoice = number(humanChoice);
    let comChoice = random();

    let final=result(myChoice,comChoice);


    style.css cody/swapnilsparsh/30DaysOfJavaScript/37 - RPS Game/style.css
    102 Views
    0 Comments
    * {
    padding: 0;
    box-sizing: border-box;
    font-family: "sans";
    }

    @font-face {
    font-family: "sans";
    index.html cody/swapnilsparsh/30DaysOfJavaScript/37 - RPS Game/index.html
    322 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">

    <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Rock Paper Scissors Game</title>